From ebb9d5bee5e01343530a50514452b62513bf0dbe Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 22 Jul 2008 16:03:45 +0100 Subject: [PATCH] ioemu: Fix hvmloader erroneous debugging prints Signed-off-by: Ian Jackson --- tools/ioemu/hw/pc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/ioemu/hw/pc.c b/tools/ioemu/hw/pc.c index fdffbbccf0..fc25a4224e 100644 --- a/tools/ioemu/hw/pc.c +++ b/tools/ioemu/hw/pc.c @@ -591,9 +591,9 @@ static void load_linux(const char *kernel_filename, "qemu: real_addr = %#zx\n" "qemu: cmdline_addr = %#zx\n" "qemu: prot_addr = %#zx\n", - real_addr, - cmdline_addr, - prot_addr); + (size_t)real_addr, + (size_t)cmdline_addr, + (size_t)prot_addr); /* highest address for loading the initrd */ if (protocol >= 0x203) -- 2.30.2